Skip to main content

All Questions

0votes
0answers
83views

WebDriverError: unknown error: failed to create Chrome process even when chromedriver, google chrome, selenium are installed

My package.json looks like this: { "name": "hello", "version": "1.0.0", "main": "main.js", "devDependencies": { ...
Frustrated_Programmer's user avatar
0votes
2answers
2kviews

Could not start a new session. Response code 500. Message: session not created

My seleinum webdriver is not launching browser, getting error frequently. Could not start a new session. Response code 500. Message: session not created: This version of ChromeDriver only supports ...
litesh gupta's user avatar
0votes
3answers
3kviews

Is Selenium WebDriver version: 4.10.0 compatible with ChromeDriver 93.0.4577.63 and Chrome browser Version 115.0.5790.110 (Official Build) (64-bit)?

I am trying to learn automation with Selenium but I got stuck with WebDriver... I followed all the steps. Installed the following, configured PATH: Chromedriver version : ChromeDriver 93.0.4577.63 ...
Sama Reddy's user avatar
1vote
1answer
288views

Cant click or send keys, selenium webdriver python

I am trying to access the following website: and apply some filters like click on and select a date. When I click on I want to select one of the two options. But I cant click with xpath neither can I ...
Gabriel Angelo Branco's user avatar
-1votes
1answer
267views

switchto.defaultcontent() method not working with chromedriver 99.0.434

Problem: On a web page> + icon>clicking on it>opens a small widget on same page. it has iframe to access the fields, so switch to iframe. after this need to click on a button which does not ...
prachi garg's user avatar
0votes
2answers
116views

What is wrong with my try except? I'm not getting either print, nor an error

Very new to python and automation. Our website has a counter at the top of the page to count down the days until Friday. It contains the number, and then the text - days until #friday (except for ...
JPWat's user avatar
2votes
0answers
2kviews

Problems disabling the Chrome "this browser is being controlled by automated test software" with Selenium in Python [duplicate]

I am a beginner with Selenium. I can not seem to disable the "AutomationControlled" flag in Chrome. according to this article: https://piprogramming.org/articles/How-to-make-Selenium-...
Hakan_Lerstom's user avatar
-1votes
1answer
141views

OutputType<X> is not getting resolved in Webdriver

I have below code: TakesScreenshot sc = (TakesScreenshot)driver; File srcfile = sc.getScreenshotAs(OutputType); Here the Output is not getting resolved to a type. Can anyone guide as to how to ...
user9261795's user avatar
0votes
1answer
125views

Executing on multiple windows or instances with Selenium web driver

I am trying to build an instagram bot with selenium. So far I have managed to get it work with 1 chrome window and 1 account, it auto follows, likes etc. with the given http requests on my express ...
Ozan Yılmaz's user avatar
0votes
1answer
739views

How to reuse the driver across sessions [duplicate]

I have searched high and low for this answer and I am unable to find the exact answer needed; so bear with me if this feels its repeating another question. Using C#, .NET, SpecFlow, Selenium I ...
CalAtk's user avatar
3votes
3answers
6kviews

How to selecting option from right click menu with Selenium

I'm using chrome as the driver and after double-clicking/context-clicking, the prompt window opens but the driver won't switch to the prompt window. Here is what I have tried... The page I am opening ...
Anthony Gachathi's user avatar
1vote
1answer
864views

How can we use ChromeDriver, IEDriver, GeckoDriver without selenium in python?

I am looking for a way to use web drivers (ChromeDriver, IEDriver, GeckoDriver etc., all together) with my native python app such that, the app will figure out the browser, and choose the driver ...
hR 312's user avatar
1vote
1answer
4kviews

Automating gmail login [During oAuth] gets blocked with user verification

This code works to login to gmail public void login(User user) { WebDriverWait wait = new WebDriverWait(driver, 60); WebElement emailTextBox = wait.until( ExpectedConditions....
Amr Lotfy's user avatar
-1votes
1answer
192views

Can't make webdriver to wait for page to load

First of all, I am familiar and read multiple times how to use implicit and explicit waits in Selenium. I have tried: driver.manage().timeouts().implicitlyWait() driver.manage().timeouts()....
Eressea's user avatar
0votes
0answers
406views

Problems headless chromedriver downloads

I have an automation process created with java selenium-webdriver, chromedriver and work with eclipse. The point is that by doing the process with headless and disable gpu I get that the download is ...
djuez's user avatar

153050per page
close